NAME
|| - logical or

SYNTAX
a || b


DESCRIPTION
This operator does logical 'or' between expressions. It first
evaluates a and returns that if a is non-zero. Otherwise it
returns b. Note that b is not evaluated at all if a is non-zero.

KEYWORDS
operators

SEE ALSO
`| and &&